Helpful Information
 
 
Category: C++
C++ -> What is the pressed key ?

Hello to dear developers reading this message .

I want to handle the Keypress event in C++ . I know C++ doesn't have handler but I can simulate it like this :

while (condition)
{
char inputChar = What should I write here ?;
if (inputChar == 'A')
{
// Program code goes here .
}
}

I'll be waiting for solutions of you , the masters of C++ .

Will be thankful to any help .

Look into using getch() it will do what you want.










privacy (GDPR)